﻿/*footer*/
#footer {
    background: #323232;
    padding-top: 60px;
    float: left;
    width: 100%;
}

.foot_left {
    float: left;
}

.foot_logo {
    margin-bottom: 30px;
}

    .foot_logo img {
        height: 70px;
    }

.company_info {
    color: #fff;
}

.company_name {
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.company_contact {
    font-size: 18px;
    line-height: 1.5;
}

    .company_contact > div {
        margin-bottom: 10px;
        display: flex;
    }

    .company_contact img {
        margin: 0 10px 0 0;
    }

.foot_right {
    float: right;
    position: relative;
}

followUs {
    text-align: right;
    color: #fff;
}

.followUs > div {
    display: inline-block;
    vertical-align: middle;
    margin: 0 13px;
    text-align: center;
}

.h2 {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    font-size: 24px;
    color: #fff;
    text-align: center;
}

.followUs_btn {
    position: relative;
    line-height: 60px;
    background-color: #0032af;
    font-size: 18px;
    display: block;
    padding: 0 80px 0 30px;
    transition: all 300ms ease;
    color: #fff;
    margin-top: 40px;
}

    .followUs_btn i {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 0;
        top: 0;
        width: 60px;
        height: 100%;
        background-color: #fff;
        text-align: center;
        transition: all 300ms ease;
    }

        .followUs_btn i:before {
            content: "";
            position: absolute;
            right: 13px;
            top: 26px;
            width: 18px;
            height: 2px;
            background: #0032af;
            transform: rotate(30deg);
        }

        .followUs_btn i:after {
            content: "";
            position: absolute;
            right: 13px;
            top: 31px;
            width: 30px;
            height: 2px;
            background: #0032af;
        }

    .followUs_btn:hover {
        padding: 0 77px 0 33px;
        color: #fff;
    }



.copyright {
    border-top: 1px solid #3c3d40;
    margin-top: 45px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 10px 0;
    float: left;
    width: 100%;
}

    .copyright span {
        clear: both;
        display: inline-block;
        margin: 0 10px;
        text-align: center;
    }

    .copyright a {
        color: rgba(255,255,255,0.8);
    }

        .copyright a:hover {
            color: #fff;
        }

.bottom-fix {
    position: fixed;
    right: 40px;
    bottom: 1vh;
    z-index: 2000;
}

    .bottom-fix .to-top {
        width: 64px;
        height: 64px;
        border-radius: 64px;
        line-height: 64px;
        background-color: rgba(0,0,0,.2);
        text-align: center;
        color: #fff;
        margin-bottom: 15px;
        cursor: pointer;
        /*        display: flex;
        align-items: center;
        justify-content: center;*/
        opacity: 0;
        visibility: hidden;
    }

        .bottom-fix .to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .bottom-fix .to-top img {
            width: 16px;
            margin-top: 15px;
            transform: rotate(90deg);
        }

        .bottom-fix .to-top:hover {
            background-color: #0032af;
        }

#linksBox {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 50%;
    top: 0;
    padding: 0;
    transform: translateX(-50%);
    z-index: 10000;
    display: none;
    background: #fff;
    box-shadow: 0 5px 7px 0 rgba(132, 132, 132, 0.1);
    border-radius: 0;
    pointer-events: auto;
}

    #linksBox:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url("/site/219/images/links_l.png") no-repeat top left;
        background-size: 100% 100%;
    }

    #linksBox:after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url("/site/219/images/links_r.png") no-repeat top right;
    }

    #linksBox .closeBtn {
        width: 68px;
        height: 68px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 5px 24px 0 rgba(214, 211, 211, 0.35);
        position: absolute;
        top: 30px;
        right: 110px;
        cursor: pointer;
        z-index: 11;
    }

        #linksBox .closeBtn img {
            width: 26px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.36s;
            z-index: 2;
        }

        #linksBox .closeBtn:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: #284a94;
            transform: translate(-50%, -50%) scale(0);
            transition: all 0.26s;
            border-radius: 50%;
        }

        #linksBox .closeBtn:hover:after {
            transform: translate(-50%, -50%) scale(1);
        }

.linksContent {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
    z-index: 10;
}

.links {
    width: 100%;
    float: left;
    margin: 50px 0 0;
}

    .links h2 {
        width: 100%;
        padding: 0 0 15px;
        font-size: 34px;
        line-height: 1.5;
        color: #284a94;
        font-weight: bold;
        border-bottom: 1px solid #dde3ec;
    }

    .links ul {
        margin: 20px -15px 0;
    }

        .links ul li {
            text-align: center;
        }

            .links ul li a {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 5px;
                background: #fff;
                border: #e9e9e9 1px solid;
            }

            .links ul li img {
                height: 80px;
                margin: 0 auto;
            }

            .links ul li p {
                float: left;
                width: 100%;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                font-size: 16px;
                height: 48px;
                margin-top: 5px;
            }

@media(max-width:991px) {
    .linksContent {
        width: 100%;
    }

    #linksBox .closeBtn {
        width: 48px;
        height: 48px;
        top: 15px;
        right: 15px;
    }

    .links {
        margin: 30px 0 0;
    }

        .links h2 {
            padding: 0 15px 15px;
            font-size: 22px;
        }

        .links ul {
            margin: 20px 0 0
        }

            .links ul li img {
                height: 60px;
            }

            .links ul li p {
                height: 40px;
                font-size: 14px;
            }
}


@media (max-width:1200px) {
    .foot_logo img {
        height: 50px;
    }

    .company_name {
        font-size: 24px;
    }

    .company_contact {
        font-size: 16px;
    }

    .followUs > div {
        margin: 45px 0 0;
    }

        .followUs > div:last-child {
            margin: 60px 0 0;
        }

        .followUs > div img {
            width: 120px;
        }

    .h2 {
        margin-top: 0;
    }

    .followUs_btn {
        margin-top: 30px
    }

    .bottom-fix {
        right: 15px;
    }

        .bottom-fix .to-top {
            width: 36px;
            height: 36px;
            border-radius: 36px;
            line-height: 36px;
            background-color: rgba(0,0,0,.2);
        }

            .bottom-fix .to-top img {
                width: 8px;
                margin-top: 10px;
            }
}

@media (max-width:1024px) {
    .foot_logo img {
        height: 40px;
    }

    .company_name {
        font-size: 20px;
    }

    .company_contact {
        font-size: 14px;
    }

    .followUs > div {
        margin: 0;
        text-align: left;
    }

        .followUs > div:last-child {
            margin: 20px 0 0;
        }

        .followUs > div img {
            width: 80px;
        }

    .h2 {
        font-size: 20px;
        text-align: left;
    }

    .followUs_btn {
        line-height: 45px;
        font-size: 14px;
        text-align: center;
        margin-top: 20px;
        padding: 0 70px 0 15px;
    }

        .followUs_btn i {
            width: 45px;
        }

            .followUs_btn i:before {
                right: 6px;
                top: 20px;
            }

            .followUs_btn i:after {
                right: 6px;
                top: 25px;
            }
}

@media(max-width:767px) {
    .foot_left, .foot_right {
        float: left;
        width: 100%;
    }

    .foot_right {
        margin-top: 20px;
    }

    .h2 {
        font-size: 16px;
    }

    .followUs > div img {
        width: 100px;
    }

    .followUs > div:last-child {
        text-align: right;
        float: right;
        margin: 30px 0 0;
    }

    .followUs_btn {
        padding: 0 55px 0 10px;
        margin: 0 0 20px;
        text-align: center;
        line-height: 40px;
    }

        .followUs_btn i {
            width: 40px;
        }

            .followUs_btn i:before {
                right: 8px;
                top: 18px;
                width: 16px;
            }

            .followUs_btn i:after {
                right: 8px;
                top: 22px;
                width: 26px;
            }

    .copyright span {
        margin: 0;
        width: 100%;
    }
}

@media(max-width:480px) {
    #footer {
        padding-top: 30px;
    }

    .foot_logo {
        margin-bottom: 15px;
        text-align:center;
    }

        .foot_logo img {
            height: 30px;
        }

    .company_name {
        margin-bottom: 10px;
        font-size: 16px;
        text-align: center;
    }

    .company_contact > div {
        margin-bottom: 5px;
        display: flex;
    }

    .company_contact img {
        margin: 0 5px 0 0;
        width: 20px;
        height: 20px;
    }

    .copyright {
        font-size: 12px;
        margin-top: 0;
    }
    
}
@media(max-width:420px) {
    .followUs{
        width: 100%;
        float: left;
        display: flex;
    }
    .followUs > div img {
        width: 90px;
    }
    .followUs > div:last-child {
        text-align: right;
        float: right;
         margin: 15px 0 0;
    }
    .followUs_btn{
        padding: 4px 45px 4px 10px;
        margin: 0 0 20px;
        text-align: left;
        line-height: 1.2;
        min-height: 42px;
        display: flex;
        align-items: center;
    }

}
